*{
    --mainGreen: #44693f;
    --mainCream: #FFFDD0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #FFFDD0;
    
}

header {
    background: #44693f;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.section {
    padding: 20px;
    text-align: center;
}

.section h2 {
    margin-top: 0;
}

.section img {
    max-width: 100%;
    height: auto;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    min-width: 100%;
    height: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

form label {
    margin-top: 10px;
}

form textarea{
    height: 150px;
}

form input, form textarea {
    width: 80%;
    padding: 10px;
    margin: 5px 0;
    text-align: center;
}

form button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #444;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #555;
}

footer {
    background: #44693f;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    bottom: -1;
}
